From: Aryeh Gregor Date: Tue, 15 Apr 2008 13:14:44 +0000 (+0000) Subject: Add RELEASE-NOTES for 33269, fix another one. X-Git-Tag: 1.31.0-rc.0~48313 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=fd0cb785a8b37da730d6298d6e4481387b32245e;p=lhc%2Fweb%2Fwiklou.git Add RELEASE-NOTES for 33269, fix another one. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 9c4e9e6d06..c8f7751981 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -175,11 +175,12 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 13690) Fix PHP notice on accessing some URLs * Hide (undo) link if user isn't able to edit page * Invalidate cache of pages that includes images via redirects on upload -* (bug 13705) Don't show rollback link in page history if called with dir=prev +* (bug 13705) Don't show rollback link in page history on incorrect revisions * (bug 13708) Don't set "Search results" title when loading Special:Search without query * (bug 13736) Don't show MediaWiki:Anontalkpagetext on non-existant IP addresses * (bug 13728) Don't trim initial whitespace during section edits +* (bug 13727) Don't delete log entries from recentchanges on page deletion === API changes in 1.13 === diff --git a/includes/Database.php b/includes/Database.php index df68f7ab5c..6c2c0ce35b 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -448,6 +448,8 @@ class Database { */ public function query( $sql, $fname = '', $tempIgnore = false ) { global $wgProfiler; + + echo "$sql\n\n"; $isMaster = !is_null( $this->getLBInfo( 'master' ) ); if ( isset( $wgProfiler ) ) {